home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / PhaseShiftX / Source / Shared / DebugUtils.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-06-23  |  292 b   |  21 lines

  1. #ifndef _DEBUGUTILS_
  2. #define _DEBUGUTILS_
  3.  
  4. #include <libkern/OSTypes.h>
  5. #include <stdio.h>
  6.  
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10.  
  11.  
  12. void printmem(const void *data,size_t len);
  13. void fprintmem(FILE *stream,const void *data,size_t len);
  14.  
  15.  
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19.  
  20. #endif /* _DEBUGUTILS_ */
  21.